home *** CD-ROM | disk | FTP | other *** search
- // ******************************************************************
- //
- // adrdlg.cpp : implementation file
- //
- // Most of this file is created by ClassWizard
- //
- // (C) 1993 POET Software
- //
- // ******************************************************************
-
-
- #include <stdafx.h> // MFC header
- #include <adrdlg.h> // header to this file
-
-
- #ifdef _DEBUG // added by ClassWizard
- #undef THIS_FILE
- static char BASED_CODE THIS_FILE[] = __FILE__;
- #endif
-
-
-
- /////////////////////////////////////////////////////////////////////////////
- // CAddressDlg dialog
-
- CAddressDlg::CAddressDlg(CWnd* pParent /*=NULL*/)
- : CDialog(CAddressDlg::IDD, pParent)
- {
- //{{AFX_DATA_INIT(CAddressDlg)
- m_strNewCity = ""; // initialize edit controls
- m_strNewStreet = "";
- m_intNewZIP = 0;
- //}}AFX_DATA_INIT
- }
-
- void CAddressDlg::DoDataExchange(CDataExchange* pDX)
- {
- CDialog::DoDataExchange(pDX);
- //{{AFX_DATA_MAP(CAddressDlg)
- DDX_Text(pDX, IDC_EDIT_ADR_CITY, m_strNewCity);
- DDX_Text(pDX, IDC_EDIT_ADR_STREET, m_strNewStreet);
- DDX_Text(pDX, IDC_EDIT_ADR_ZIP, m_intNewZIP);
- //}}AFX_DATA_MAP
- }
-
- BEGIN_MESSAGE_MAP(CAddressDlg, CDialog)
- //{{AFX_MSG_MAP(CAddressDlg)
- // NOTE: the ClassWizard will add message map macros here
- //}}AFX_MSG_MAP
- END_MESSAGE_MAP()
-
-
- /////////////////////////////////////////////////////////////////////////////
- // CAddressDlg message handlers
-
- // There are no additional message handlers necessary.
- // OK button with ID of IDOK invokes CDialog::OnOK, when clicked
- // CANCEL button with ID of IDCANCEL invokes CDialog::OnCancel, when clicked
-
-